home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro13 / islower.c < prev    next >
Text File  |  1993-02-01  |  173b  |  13 lines

  1. /*
  2.     islower.C
  3.  
  4.     Copyright (C) 1993, Geoff Friesen B.Sc.
  5.     All rights reserved.
  6. */
  7.  
  8. #define    INCL_ISLOWER
  9.  
  10. int islower (int c)
  11. {
  12.    return (c >= 'a' && c <= 'z');
  13. }